home *** CD-ROM | disk | FTP | other *** search
- <HTML>
-
- <BODY>
-
-
-
- <SCRIPT LANGUAGE="VBScript">
-
- sub myDiv_onClick
-
- msgbox window.event.srcElement.id
-
- end sub
-
-
-
- sub myBold_onClick
-
- msgbox "BOLD!"
-
- window.event.cancelBubble=true
-
- end sub
-
-
-
- sub myRef_onClick
-
- msgbox "Whoa! Can't let you go there!"
-
- window.event.cancelBubble=true
-
- window.event.returnValue=false
-
- end sub
-
- </SCRIPT>
-
-
-
- <DIV ID=myDiv LANGUAGE="VBScript">
-
- <B ID=myBold>This is Bold Text</B><BR>
-
- <I ID=myItalic>This is Italic Text</I><BR>
-
- <A ID=myRef HREF="http://www.microsoft.com/ie/ie40">
-
- This is a link to Microsoft</A>
-
- </DIV>
-
- </BODY>
-
- </HTML>
-
-